home *** CD-ROM | disk | FTP | other *** search
/ Gekikoh Dennoh Club 1 / Gekikoh Dennoh Club Vol. 1 (Japan).7z / Gekikoh Dennoh Club Vol. 1 (Japan) (Track 1).bin / tools / dcv_win / src / dc_prgrs.pas < prev    next >
Encoding:
Pascal/Delphi Source File  |  1996-01-11  |  392 b   |  28 lines

  1. unit Dc_prgrs;
  2.  
  3. interface
  4.  
  5. uses WinTypes, WinProcs, Classes, Graphics, Forms, Controls, StdCtrls,
  6.   Buttons, ExtCtrls, VBXCtrl, Gauge;
  7.  
  8. type
  9.   TAboutBox1 = class(TForm)
  10.     Panel1: TPanel;
  11.     BiGauge1: TBiGauge;
  12.     Label1: TLabel;
  13.   private
  14.     { Private 宣言 }
  15.   public
  16.     { Public 宣言 }
  17.   end;
  18.  
  19. var
  20.   AboutBox1: TAboutBox1;
  21.  
  22. implementation
  23.  
  24. {$R *.DFM}
  25.  
  26. end.
  27.  
  28.